home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / db / esm-3.1 / esm-3 / usr / local / sm / src / config / configOptions.c < prev    next >
Encoding:
Text File  |  1996-05-05  |  2.5 KB  |  65 lines

  1. /*
  2.  *   $RCSfile: configOptions.c,v $  
  3.  *   $Revision: 1.2 $  
  4.  *   $Date: 1996/05/04 23:51:45 $      
  5.  */ 
  6. /**********************************************************************
  7. * EXODUS Database Toolkit Software
  8. * Copyright (c) 1991 Computer Sciences Department, University of
  9. *                    Wisconsin -- Madison
  10. * All Rights Reserved.
  11. *
  12. * Permission to use, copy, modify and distribute this software and its
  13. * documentation is hereby granted, provided that both the copyright
  14. * notice and this permission notice appear in all copies of the
  15. * software, derivative works or modified versions, and any portions
  16. * thereof, and that both notices appear in supporting documentation.
  17. *
  18. * THE COMPUTER SCIENCES DEPARTMENT OF THE UNIVERSITY OF WISCONSIN --
  19. * MADISON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION.  
  20. * THE DEPARTMENT DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES
  21. * WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
  22. *
  23. * The EXODUS Project Group requests users of this software to return 
  24. * any improvements or extensions that they make to:
  25. *
  26. *   EXODUS Project Group 
  27. *     c/o David J. DeWitt and Michael J. Carey
  28. *   Computer Sciences Department
  29. *   University of Wisconsin -- Madison
  30. *   Madison, WI 53706
  31. *
  32. *     or exodus@cs.wisc.edu
  33. *
  34. * In addition, the EXODUS Project Group requests that users grant the 
  35. * Computer Sciences Department rights to redistribute these changes.
  36. **********************************************************************/
  37.  
  38. /*
  39.  *  This file contains compile time configuration settings for
  40.  *  the Storage Manager client and server.
  41.  */
  42.  
  43. /*
  44.  * SM_ConfigFileName contains the complete path name of the default
  45.  * configuration file.  Usually it is in a directory such as
  46.  * /usr/lib/exodus with the name sm_config.
  47.  *
  48.  * If you are setting up the Storage Manager for the first time,
  49.  * you need not alter SM_ConfigFileName yet.  Later, when you 
  50.  * set up a site specific configuration file you can change it.
  51.  */
  52. char    *SM_ConfigFileName = "/usr/local/sm/bin/sm_config";
  53.  
  54. /*
  55.  * SM_DiskProcessName contains the complete path name of the disk
  56.  * I/O exececutable used by the SM server.  Usually it is in a
  57.  * directory such as /usr/lib/exodus with the name diskrw.
  58.  *
  59.  * If you are setting up the Storage Manager for the first time and
  60.  * just interested in testing it, the set SM_DiskProcessName to
  61.  * SMROOT/bin/diskrw where SMROOT is the complete path to the
  62.  * Storage Manager release.
  63.  */
  64. char    *SM_DiskProcessName = "/usr/local/sm/bin/diskrw";
  65.